home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / getppid.c < prev    next >
C/C++ Source or Header  |  1988-07-29  |  2KB  |  56 lines

  1. /* 
  2.  * getppid.c --
  3.  *
  4.  *    Source code for the getppid library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: getppid.c,v 1.2 88/07/29 17:40:34 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <sprite.h>
  21. #include <proc.h>
  22. #include "compatInt.h"
  23.  
  24. /*
  25.  *----------------------------------------------------------------------
  26.  *
  27.  * getppid --
  28.  *
  29.  *    Procedure to map from Unix getppid system call to Sprite Proc_GetIDs.
  30.  *
  31.  * Results:
  32.  *    UNIX_ERROR is returned upon error, with the actual error code
  33.  *    stored in errno.  Upon success, the ID of the parent of the current
  34.  *    process is returned.
  35.  *
  36.  * Side effects:
  37.  *    None.
  38.  *
  39.  *----------------------------------------------------------------------
  40.  */
  41.  
  42. int
  43. getppid()
  44. {
  45.     ReturnStatus status;    /* result returned by Proc_GetIDs */
  46.     int parentPid;        /* ID of parent of current process */
  47.  
  48.     status = Proc_GetIDs((int *) NULL, &parentPid, (int *) NULL, (int *) NULL);
  49.     if (status != SUCCESS) {
  50.     errno = Compat_MapCode(status);
  51.     return(UNIX_ERROR);
  52.     } else {
  53.     return(parentPid);
  54.     }
  55. }
  56.